oh-my-dear-ai
commited on
Commit
•
c907f10
1
Parent(s):
8905bb5
fix(csv): Fix a mistake in the tasks of mimbulus
Browse files- Add initial release and recovery token entries to the changelog.
- Fix a mistake in the tasks of mimbulus.
- CHANGELOG.md +3 -0
- app.py +9 -1
- herbologist_almanac_checklist_data.csv +1 -1
CHANGELOG.md
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
# CHANGELOG
|
2 |
+
- 204/08/31: Initial release
|
3 |
+
- 204/09/03: Add recovery token
|
app.py
CHANGED
@@ -97,6 +97,7 @@ def process_data(*args):
|
|
97 |
|
98 |
for _, i in enumerate(almanac_inp):
|
99 |
almanac_df.loc[almanac_df["plant"] == pl, columns_with_tasks[i]] = "✔"
|
|
|
100 |
almanac_reverse_64 = bin_ls2base64(reversed(almanac_bin_ls))
|
101 |
# 这里可以添加处理DataFrame的逻辑
|
102 |
return (
|
@@ -229,6 +230,14 @@ with gr.Blocks() as app:
|
|
229 |
|
230 |
generated_img = gr.Image(label="Generated Image", format="png", type="pil")
|
231 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
232 |
submit_button.click(
|
233 |
process_data,
|
234 |
inputs=checklist_inputs,
|
@@ -248,6 +257,5 @@ with gr.Blocks() as app:
|
|
248 |
# )
|
249 |
|
250 |
|
251 |
-
|
252 |
app.queue()
|
253 |
app.launch()
|
|
|
97 |
|
98 |
for _, i in enumerate(almanac_inp):
|
99 |
almanac_df.loc[almanac_df["plant"] == pl, columns_with_tasks[i]] = "✔"
|
100 |
+
|
101 |
almanac_reverse_64 = bin_ls2base64(reversed(almanac_bin_ls))
|
102 |
# 这里可以添加处理DataFrame的逻辑
|
103 |
return (
|
|
|
230 |
|
231 |
generated_img = gr.Image(label="Generated Image", format="png", type="pil")
|
232 |
|
233 |
+
logs = gr.Markdown(
|
234 |
+
"""
|
235 |
+
# CHANGELOG
|
236 |
+
- 204/08/31: Initial release
|
237 |
+
- 204/09/03: Add recovery token
|
238 |
+
"""
|
239 |
+
)
|
240 |
+
|
241 |
submit_button.click(
|
242 |
process_data,
|
243 |
inputs=checklist_inputs,
|
|
|
257 |
# )
|
258 |
|
259 |
|
|
|
260 |
app.queue()
|
261 |
app.launch()
|
herbologist_almanac_checklist_data.csv
CHANGED
@@ -21,5 +21,5 @@ water_hyacinth,Hyacinth,13,False,GATHER 45 times during open world exploration,F
|
|
21 |
lily_of_the_valley,Lily of the Valley,14,False,GATHER 35 times during open world exploration,False,"Accumulate 50,000 LIGHT points",False,HARVEST 100 never invaded by OVERGROWTHS,False,SELL 100 Radiant,False,white,blue,yellow,chartreuse,purple,pink,11,
|
22 |
mosaic_flower,Mosaic Flower,15,False,HARVEST 100 with HYGIENE never reaching 0,False,SELL 50 Radiant,False,HARVEST 100 never invaded by OVERGROWTHS,False,HARVEST 200,False,yellow,orange,chartreuse,white,pink,blue,11,
|
23 |
sunflower,Sunflower,16,False,HARVEST 120 rare-colored,False,GATHER 50 times during open world exploration,False,Make 150 gems from SELLing,False,HARVEST 45 never invaded by OVERGROWTHS,False,orange,yellow,white,red,blue,purple,11,
|
24 |
-
mimbulus_mimbletonia,Mimbulus,17,False,Show off Radiant 80 times,False,HARVEST 100 Safe and Sound,False,"Provide 50,000 MOOD points",False,
|
25 |
water_lily,Water Lily,18,False,Unknown,False,Unknown,False,Unknown,False,Unknown,False,yellow,pink,white,purple,blue,black,11,
|
|
|
21 |
lily_of_the_valley,Lily of the Valley,14,False,GATHER 35 times during open world exploration,False,"Accumulate 50,000 LIGHT points",False,HARVEST 100 never invaded by OVERGROWTHS,False,SELL 100 Radiant,False,white,blue,yellow,chartreuse,purple,pink,11,
|
22 |
mosaic_flower,Mosaic Flower,15,False,HARVEST 100 with HYGIENE never reaching 0,False,SELL 50 Radiant,False,HARVEST 100 never invaded by OVERGROWTHS,False,HARVEST 200,False,yellow,orange,chartreuse,white,pink,blue,11,
|
23 |
sunflower,Sunflower,16,False,HARVEST 120 rare-colored,False,GATHER 50 times during open world exploration,False,Make 150 gems from SELLing,False,HARVEST 45 never invaded by OVERGROWTHS,False,orange,yellow,white,red,blue,purple,11,
|
24 |
+
mimbulus_mimbletonia,Mimbulus,17,False,Show off Radiant 80 times,False,HARVEST 100 Safe and Sound,False,"Provide 50,000 MOOD points",False,SELL 100 Radiant,False,,,,,,,5,
|
25 |
water_lily,Water Lily,18,False,Unknown,False,Unknown,False,Unknown,False,Unknown,False,yellow,pink,white,purple,blue,black,11,
|